home *** CD-ROM | disk | FTP | other *** search
- /* This Script will connect to the provider
- * and login using the login-script in
- * ENV:NetConfig/LoginScript
- *
- * Do not modify anything since AmiTCP Prefs
- * depends on it.
- */
-
- options results
- signal on error
-
- Set WaitForTimeout 30
- Set InterCharDelay 20
-
- ShowConsole
-
- call CommandState
- call Dial
-
- if (result != 0) then
- exit 10
-
- call "ENV:NetConfig/LoginScript"
-
- exit 0;
-
- error:
- Say "Dialscript: Command on line" SIGL "returned" RC ":" SerScript.LASTERROR
- Exit 10
-